home *** CD-ROM | disk | FTP | other *** search
/ The National Palace Museum Experience / The National Palace Museum Experience.iso / Programs / TimeLine.dxr / 00013.ls < prev    next >
Encoding:
Text File  |  1998-11-19  |  3.8 KB  |  137 lines

  1. global gbarsprite, gslidersprite, returnframe, infoarea
  2.  
  3. on prepareMovie
  4.   set gbarsprite to 43
  5.   set gslidersprite to 45
  6.   set infoarea to 36
  7.   puppetSprite(gslidersprite, 1)
  8.   checkstate()
  9. end
  10.  
  11. on dragslider
  12.   set barleft to the left of sprite gbarsprite
  13.   set barright to the right of sprite gbarsprite
  14.   repeat while the mouseDown = 1
  15.     set mh to the mouseH
  16.     if mh <= barleft then
  17.       set the locH of sprite gslidersprite to barleft
  18.     else
  19.       if mh >= barright then
  20.         set the locH of sprite gslidersprite to barright
  21.       else
  22.         set the locH of sprite gslidersprite to mh
  23.       end if
  24.     end if
  25.     set sliderloc to the locH of sprite gslidersprite
  26.     set sliderloc to sliderloc - the left of sprite gbarsprite
  27.     set the locV of sprite gslidersprite to 480 - sliderloc
  28.     setframebyslider()
  29.     updateStage()
  30.   end repeat
  31. end
  32.  
  33. on setframebyslider
  34.   set sliderloc to the locH of sprite gslidersprite
  35.   set sliderloc to sliderloc - the left of sprite gbarsprite
  36.   set sliderloc to float(sliderloc)
  37.   set ratio to sliderloc / the width of sprite gbarsprite
  38.   set endframe to label("End")
  39.   set mtime to ratio * endframe
  40.   if mtime < 1 then
  41.     set mtime to 1
  42.   else
  43.     if mtime > endframe then
  44.       set mtime to endframe
  45.     else
  46.       go(integer(mtime))
  47.     end if
  48.   end if
  49. end
  50.  
  51. on setsliderbyframe
  52.   set ratio to the frame / 48
  53.   set sliderloc to integer(ratio * the width of sprite gbarsprite)
  54.   set sliderloc to sliderloc + the left of sprite gbarsprite
  55.   set the locH of sprite gslidersprite to sliderloc
  56. end
  57.  
  58. on mainmenu
  59.   set returnframe to the frame
  60.   puppetSprite(12, 1)
  61.   puppetSprite(57, 1)
  62.   go("MainMenu")
  63. end
  64.  
  65. on showinfo
  66.   puppetSprite(infoarea, 1)
  67.   if the mouseCast > 0 then
  68.     set mouseovermember to the name of member the mouseCast
  69.     set mheadchar to chars(mouseovermember, 1, length(mouseovermember) - 1)
  70.     if the last char in mouseovermember = "B" then
  71.       set the memberNum of sprite infoarea to the number of member (mheadchar & "C")
  72.       if char 1 of mouseovermember = "F" then
  73.         set mycursor to the number of member "hand"
  74.         set mycursormask to the number of member "hand mask"
  75.         cursor([mycursor, mycursormask])
  76.         if the mouseDown then
  77.           put chars(mouseovermember, 2, 7) into field "Current Object"
  78.           go(1, "Object")
  79.         end if
  80.       else
  81.         cursor(-1)
  82.       end if
  83.     else
  84.       puppetSprite(infoarea, 0)
  85.     end if
  86.   end if
  87. end
  88.  
  89. on checkstate
  90.   repeat with spriteNum = 15 to 30
  91.     set mnum to the memberNum of sprite spriteNum
  92.     if mnum > 0 then
  93.       set mname to the name of member mnum
  94.       set mheadchar to chars(mname, 1, length(mname) - 1)
  95.       set mlastchar to the last char in mname
  96.       if (mlastchar = "A") or the mouseUp then
  97.         set the memberNum of sprite spriteNum to the number of member (mheadchar & "B")
  98.         next repeat
  99.       end if
  100.       if not (the mouseDown) then
  101.         set the memberNum of sprite spriteNum to the number of member (mheadchar & "A")
  102.       end if
  103.     end if
  104.   end repeat
  105. end
  106.  
  107. on switchdynasty whichdynasty
  108.   case whichdynasty of
  109.     "D1":
  110.       puppetSprite(gslidersprite, 0)
  111.     "D2":
  112.       set the rect of sprite gslidersprite to rect(206, 461, 232, 487)
  113.     "D3":
  114.       set the rect of sprite gslidersprite to rect(234, 433, 260, 459)
  115.     "D4":
  116.       set the rect of sprite gslidersprite to rect(248, 419, 274, 445)
  117.     "D5":
  118.       set the rect of sprite gslidersprite to rect(256, 411, 282, 437)
  119.     "D6":
  120.       set the rect of sprite gslidersprite to rect(266, 401, 292, 427)
  121.     "D7":
  122.       set the rect of sprite gslidersprite to rect(275, 392, 301, 418)
  123.     "D8":
  124.       set the rect of sprite gslidersprite to rect(280, 387, 306, 413)
  125.     "D9":
  126.       set the rect of sprite gslidersprite to rect(289, 378, 315, 404)
  127.   end case
  128.   repeat with i = 15 to 30
  129.     set the visible of sprite i to 0
  130.   end repeat
  131.   go(whichdynasty)
  132. end
  133.  
  134. on stopMovie
  135.   gobackpath()
  136. end
  137.